From c4d7a1af8e6b8d8c651d6f3efc0180b9ec9c17c8 Mon Sep 17 00:00:00 2001 From: "lists-xen@pimb.org[kaf24]" Date: Sun, 8 May 2005 08:37:12 +0000 Subject: [PATCH] bitkeeper revision 1.1159.258.114 (427dcfb8HaNsKoCdNjOQCEM_vCEWTA) [PATCH] [PATCH] Increase size of sxpr parser input buffer Increase the size of the sxpr parser input buffer from 1024 characters, which isn't long enough to hold larger domain configurations (xfrd transmits the entire domain config sxpr as a single atom inside of another sxpr). Signed-off-by: Jody Belka --- BitKeeper/etc/logging_ok | 1 + tools/libxutil/sxpr_parser.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/BitKeeper/etc/logging_ok b/BitKeeper/etc/logging_ok index 90b505243e..e119b60bfa 100644 --- a/BitKeeper/etc/logging_ok +++ b/BitKeeper/etc/logging_ok @@ -41,6 +41,7 @@ kaf24@striker.cl.cam.ac.uk kaf24@viper.(none) katzj@redhat.com laudney@eclipse.(none) +lists-xen@pimb.org lynx@idefix.cl.cam.ac.uk mafetter@fleming.research mark@maw48.kings.cam.ac.uk diff --git a/tools/libxutil/sxpr_parser.h b/tools/libxutil/sxpr_parser.h index 0736fd3d40..0a3fde55fd 100644 --- a/tools/libxutil/sxpr_parser.h +++ b/tools/libxutil/sxpr_parser.h @@ -28,7 +28,7 @@ /** Size of a parser input buffer. * Tokens read must fit into this size (including trailing null). */ -#define PARSER_BUF_SIZE 1024 +#define PARSER_BUF_SIZE 4096 struct Parser; typedef int ParserStateFn(struct Parser *, char c); -- 2.30.2